From 7a3863acfb15413d9346d6e7b0c951b8fba72220 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20H=C3=A4rdeman?= Date: Sun, 5 Oct 2025 17:48:37 +0200 Subject: [PATCH] lua: CMakeLists: drop redundant cmake_minimum_required MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The Lua module depends on the parent libubox project and can't be built independently. Drop redundant cmake_minimum_required from lua/CMakeLists.txt and inherit the version from the parent CMake project to keep version consistency. Signed-off-by: David Härdeman Link: https://github.com/openwrt/libubox/pull/21 Signed-off-by: Christian Marangi --- lua/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/CMakeLists.txt b/lua/CMakeLists.txt index 4ec4e39..104a56a 100644 --- a/lua/CMakeLists.txt +++ b/lua/CMakeLists.txt @@ -1,5 +1,3 @@ -cmake_minimum_required(VERSION 3.10) - PROJECT(uloop C) SET(CMAKE_INSTALL_PREFIX /) -- 2.30.2